home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-05-18 | 372 b | 24 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved.
-
- #ifndef __PICTURE_H
- #define __PICTURE_H
-
- #include "CLDrawSlate.h"
-
- class TPicture:
- public TDrawSlate
- {
- private:
- PicHandle mhPic;
- OpenCPicParams mhParms;
- protected:
- virtual Boolean GetDrawSelf();
- virtual Boolean ReleaseDrawSelf();
- public:
- TPicture( Rect );
- virtual ~TPicture();
- PicHandle GetPic();
- };
-
- #endif